// ######################################################### // === File #9 of 12 : demo.h ============================== // ------------------- C++ code : BEGIN -------------------- // ============================================================== // // Copyright (c) 2002 by Alex Vinokur. This work and all works // derived from it may be copied and modified without any // restrictions other than that a copy of this copyright notice // must be included in any copy of this work or any derived work. // // ============================================================== // ######################################################### // ## mailto:alexvn@bigfoot.com, mailto:alexv@hitechclub.com // ## http://up.to/alexv, http://go.to/alexv_math // ######################################################### // ============================================================== // ############################################################## // // SOFTWARE : C/C++ Program Perfometer // FILE : demo.h // // DESCRIPTION : // Declaration of measured/compared functions // // ---- ---------- // Created 2002-03-04 // ---- ---------- // // ############################################################## /////////////// #ifndef _DEMO_H #define _DEMO_H /////////////// //=========================== #include "adapt.h" //--------------------------- void demo_01 (void); void demo_02 (void); void demo_03 (void); void demo_04 (void); void demo_05 (void); void demo_06 (void); void demo_07 (void); void demo_08 (void); void demo_09 (void); void demo_10 (void); void demo_11 (void); void get_string_size (void); void write_to_stream (void); //########################################### #endif //########################################### // ------------------- C++ code : END ---------------------- // === File #9 of 12 : demo.h ==============================