synfig-core  1.0.3
main.h
Go to the documentation of this file.
1 /* === S Y N F I G ========================================================= */
21 /* ========================================================================= */
22 
23 /* === S T A R T =========================================================== */
24 
25 #ifndef __SYNFIG_MAIN_H
26 #define __SYNFIG_MAIN_H
27 
28 /* === H E A D E R S ======================================================= */
29 
30 #include <ETL/ref_count>
31 #include "general.h"
32 
33 /* === M A C R O S ========================================================= */
34 
35 /* === T Y P E D E F S ===================================================== */
36 
37 /* === C L A S S E S & S T R U C T S ======================================= */
38 
39 namespace synfig {
40 
46 class Main
47 {
48  etl::reference_counter ref_count_;
49 public:
50  Main(const synfig::String& basepath,ProgressCallback *cb=0);
51  ~Main();
52 
53  const etl::reference_counter& ref_count()const { return ref_count_; }
54 }; // END of class Main
55 
56 }; // END if namespace synfig
57 
58 /* === E N D =============================================================== */
59 
60 #endif