/simpletypesystem/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/simpletypesystem/trunk

« back to all changes in this revision

Viewing changes to src/Box.h

  • Committer: Gustav Hartvigsson
  • Date: 2015-08-27 15:01:32 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20150827150132-pwijpi0k2f4f96rg
* Working on SMatrix to finish it off.
* Added (non working?) s_wstiring_to_string () to convert Wide Strings (wchar_t *) to Byte Strings (char *).
* fixed spelling of tuple in Matrix.[h,c]
* added documentation to different parts of the code.

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 
17
17
/** @brief
18
18
 * A reference counted box sitting on top of an SObject.
 
19
 *
 
20
 * When creating an SBox use the s_box_new() macro, it expands to the correct
 
21
 * constructor using the C11 _Generic macro.
 
22
 *
 
23
 * When freeing the SBox use s_object_free() function. If you depend
 
24
 * on reference counting use s_object_unref() to do this.
19
25
 */
20
26
typedef struct SBox SBox;
21
27