test.c
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027 #include "scb.h"
00028
00029 void trace_empty(const char *format, ...)
00030 {
00031 }
00032
00033
00034 #define TRACE trace_empty
00035
00036
00037
00038
00039
00040
00041
00042 void testDoc()
00043 {
00044
00045 ScbDocPtr doc = scb_doc_new();
00046 if (NULL == doc)
00047 {
00048 TRACE("Could not construct a scribble document!");
00049 return;
00050 }
00051
00052
00053 ScbPagesPtr pages = scb_doc_get_pages(doc);
00054
00055
00056 {
00057 ScbPageId id;
00058 ScbPagePtr page = NULL;
00059 int i = 0;
00060 for(; i < 5; ++i)
00061 {
00062 scb_page_id_from_int(&id, i);
00063 page = scb_page_new(&id);
00064 scb_pages_add_page(pages, page);
00065 }
00066 scb_pages_dump(pages);
00067 }
00068
00069 scb_doc_free(doc);
00070 }
00071
00072 int main(int argc, char * argv[])
00073 {
00074 testDoc();
00075 return 0;
00076 }