summaryrefslogtreecommitdiff
path: root/CodeLite/function.h
diff options
context:
space:
mode:
authorAlessio Treglia <quadrispro@ubuntu.com>2010-05-02 01:22:32 +0200
committerAlessio Treglia <quadrispro@ubuntu.com>2010-05-02 01:22:32 +0200
commit75096346270d50c7b541003e8bd836eb9da82d2e (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /CodeLite/function.h
parentc298bfa6913b48e5e16f7d3fed3839e203fadba1 (diff)
Clean old upstream branch.
Diffstat (limited to 'CodeLite/function.h')
-rw-r--r--CodeLite/function.h34
1 files changed, 0 insertions, 34 deletions
diff --git a/CodeLite/function.h b/CodeLite/function.h
deleted file mode 100644
index 6bd569f2..00000000
--- a/CodeLite/function.h
+++ /dev/null
@@ -1,34 +0,0 @@
-#ifndef FUNCTION_H
-#define FUNCTION_H
-
-#include "string"
-#include "list"
-#include "variable.h"
-#include <stdio.h>
-
-class clFunction
-{
-public:
- std::string m_name;
- std::string m_scope; //functions' scope
- std::string m_retrunValusConst; // is the return value a const?
- std::string m_signature;
- Variable m_returnValue;
- int m_lineno;
- bool m_isVirtual;
- bool m_isPureVirtual;
- bool m_isConst;
-
-public:
- clFunction();
- virtual ~clFunction();
-
- //clear the class content
- void Reset();
-
- //print the variable to stdout
- void Print();
-};
-
-typedef std::list<clFunction> FunctionList;
-#endif //FUNCTION_H