2 * Copyright 2013, Stephan Aßmus <superstippi@gmx.de>.
3 * All rights reserved. Distributed under the terms of the MIT License.
8 #include <Referenceable.h>
13 typedef BReference
<BulletData
> BulletDataRef
;
16 // You cannot modify a BulletData object once it has been created.
17 class BulletData
: public BReferenceable
{
20 BulletData(const BString
& string
,
22 BulletData(const BulletData
& other
);
25 const BulletData
& other
) const;
27 const BulletData
& other
) const;
29 BulletDataRef
SetString(const BString
& string
);
30 inline const BString
& String() const
33 BulletDataRef
SetSpacing(float spacing
);
34 inline float Spacing() const
38 BulletData
& operator=(const BulletData
& other
);
46 #endif // BULLET_DATA_H