www.pudn.com > 2005010815393829175.zip > sample.h


// $Id$ 
 
#pragma once	// replaces #ifndef FILE/#define FILE/#endif FILE 
 
/* ClassName 
 * Simple description of what the class does, and any other important stuff. 
 */ 
 
#include "engine/globals.h" 
#include  
#include "more_includes.h" 
 
class C_ClassName { 
 
public: 
    // constructors & destructor 
	~C_ClassName(); 
 
    // variables 
 
    // methods    
 
protected:    
    // variables 
 
    // methods 
 
private: 
    // variables 
 
    // methods 
};