summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorchatty1996-03-11 15:59:15 +0000
committerchatty1996-03-11 15:59:15 +0000
commit48a66d166ea5ad246a3f04d43fde7ec98ae28c9f (patch)
tree8a9bbf0da920fc70e61b7dc2a3aa53e15aa9b8b8
parent4fed6ed9a6015c06e8e35035079ba94dcdeb8712 (diff)
downloadivy-league-48a66d166ea5ad246a3f04d43fde7ec98ae28c9f.zip
ivy-league-48a66d166ea5ad246a3f04d43fde7ec98ae28c9f.tar.gz
ivy-league-48a66d166ea5ad246a3f04d43fde7ec98ae28c9f.tar.bz2
ivy-league-48a66d166ea5ad246a3f04d43fde7ec98ae28c9f.tar.xz
Removed pragma interfaces
-rw-r--r--dnn/Event.h6
-rw-r--r--utils/SmartPointer.h5
-rw-r--r--utils/String.h4
-rw-r--r--utils/Timer.h7
4 files changed, 0 insertions, 22 deletions
diff --git a/dnn/Event.h b/dnn/Event.h
index 7609036..fcb24ca 100644
--- a/dnn/Event.h
+++ b/dnn/Event.h
@@ -15,10 +15,6 @@
#ifndef DnnEvent_H_
#define DnnEvent_H_
-#ifdef __GNUG__
-#pragma interface
-#endif
-
#include "cplus_bugs.h"
#include "ccu/String.h"
#include "ccu/List.h"
@@ -45,7 +41,6 @@ struct DnnEventFeature {
#endif
-
class DnnEventFeatureList : public CcuListOf <DnnEventFeature> {
private:
void Load (int, DnnEventFeature*);
@@ -56,7 +51,6 @@ public:
~DnnEventFeatureList ();
};
-
class DnnEventType {
private:
static void ClassInit ();
diff --git a/utils/SmartPointer.h b/utils/SmartPointer.h
index 1939327..b1b5003 100644
--- a/utils/SmartPointer.h
+++ b/utils/SmartPointer.h
@@ -16,10 +16,6 @@
#ifndef SmartPointer_H_
#define SmartPointer_H_
-#ifdef __GNUG__
-#pragma interface
-#endif
-
#include "cplus_bugs.h"
#include <sys/types.h>
@@ -79,7 +75,6 @@ inline operator DATA* () const { return Data; }
#define PointerClass(SmartClass, DataClass) typedef CcuSmartPointerTo <DataClass> SmartClass;
-
#else /* CPLUS_BUG19 */
#define PointerClass(SmartClass, DataClass) \
diff --git a/utils/String.h b/utils/String.h
index 7fa3329..42509d3 100644
--- a/utils/String.h
+++ b/utils/String.h
@@ -16,10 +16,6 @@
#ifndef String_H_
#define String_H_
-#ifdef __GNUG__
-#pragma interface
-#endif
-
#include "cplus_bugs.h"
/*? class StringMemory ?*/
diff --git a/utils/Timer.h b/utils/Timer.h
index 733a443..367a320 100644
--- a/utils/Timer.h
+++ b/utils/Timer.h
@@ -15,11 +15,6 @@
#ifndef Timer_H_
#define Timer_H_
-#ifdef __GNUG__
-#pragma interface
-#endif
-
-
#include "cplus_bugs.h"
#include "bool.h"
#include "Time.h"
@@ -50,8 +45,6 @@ inline ~CcuTimerSet () {}
inline bool IsEmpty () const { return bool (FirstTimer == 0); }
};
-
-
class CcuCoreTimer {
friend class CcuTimerSet;
public: