Updated bsconf to the latest from uSTL
[ttodo.git] / todo.h
blobd8506aa0b22dca54a07fe9b2a5ab411041299a24
1 // This file is part of a terminal todo application.
2 //
3 // Copyright (C) 2006 by Mike Sharov <msharov@users.sourceforge.net>
4 // This file is free software, distributed under the MIT License.
5 //
6 // todo.h
7 //
9 #ifndef TODO_H_2485BD5D6B62EC7E1E1B95096F9679E7
10 #define TODO_H_2485BD5D6B62EC7E1E1B95096F9679E7
12 #include "cldoc.h"
14 class CTodoApp : public CApplication {
15 public:
16 static CTodoApp& Instance (void);
17 protected:
18 void OnCreate (argc_t argc, argv_t argv);
19 private:
20 CTodoApp (void);
21 void GetDefaultFilename (string& filename) const;
22 private:
23 CTodoDocument m_Doc;
24 CCurlistDocument m_Curlist;
27 #endif