KSquare Utilities
Atom.cpp
Go to the documentation of this file.
1 /* Atom.cpp -- Experimental class that is not in use; meant to be base class to all other classes.
2  * Copyright (C) 1994-2014 Kurt Kramer
3  * For conditions of distribution and use, see copyright notice in KKB.h
4  */
5 #include "FirstIncludes.h"
6 
7 #include <stdio.h>
8 #include <stdlib.h>
9 #include <fstream>
10 #include <string>
11 #include <iostream>
12 #include <vector>
13 
14 #include "MemoryDebug.h"
15 
16 using namespace std;
17 
18 
19 #include "KKBaseTypes.h"
20 using namespace KKB;
21 
22 
23 #include "Atom.h"
24 
26 {
27 }
28 
29 Atom::~Atom ()
30 {
31 }
virtual ~Atom()
Definition: Atom.cpp:29
KKTHread * KKTHreadPtr
Base class of all other classes that are meant to be managed by &#39;KKBase&#39;.
Definition: Atom.h:49
Atom()
Definition: Atom.cpp:25