File: summation.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 (15 lines) | stat: -rw-r--r-- 525 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <string>
#include <vector>
using namespace std;

class Category;

int expandSummation( Category * );
int expandRecursive( Category *, vector<string> &, vector<string> &,
                     vector<Category *> &, string );
int addRealSubCats( Category *, vector<Category *> &, Category * );
int categoryDone( vector<string> &, Category * );
int removeExcludedCategories( vector<string> &, vector<Category *> & );

void sortCategories( Category * );
int compareCategoryNames( Category *, Category * );