File: currents.h

package info (click to toggle)
kascade 1.0-beta10-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 964 kB
  • ctags: 815
  • sloc: cpp: 7,780; makefile: 39
file content (29 lines) | stat: -rw-r--r-- 562 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#include <string>
#include <vector>
using namespace std;

class Category;
class ExprNode;
class Currents

{
public:
    	~Currents();

        void save();
        void load();
	void load_nosel();
	void load_nocat();
        int changed();

        Category *c_cCategory;
	string fullpath;
        int c_selectionentered;

private:
	int c_highlight;
        Category *c_skippedCat; //, *c_argCat;
        string c_cPath, c_aPath, c_cFile;
        vector<ExprNode *> c_maskv;
        vector<string> c_masksv, c_selectionv, c_argv;
};