Basic ScreenNetEvaluation

This commit is contained in:
Charles Lohr
2004-08-31 16:41:58 +00:00
parent da75909710
commit 1c3e0ddd22
2 changed files with 15 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
#include "ScreenNetEvaluation.h"
ScreenNetEvaluation::ScreenNetEvaluation (const CString & sClassName) : ScreenEvaluation( sClassName )
{
}
+9
View File
@@ -0,0 +1,9 @@
#include "global.h"
#include "Screen.h"
#include "ScreenEvaluation.h"
class ScreenNetEvaluation: public ScreenEvaluation
{
public:
ScreenNetEvaluation (const CString & sClassName);
};