[ create a new paste ] login | about

Link: http://codepad.org/pYLWB08b    [ raw code | output | fork ]

C++, pasted on Sep 20:
#ifndef _GKClientProperty_h_
#define _GKClientProperty_h_

#include <qstring.h>
#include "GKTimeDuration.h"
#include "ALogPluginUtil.h"

class GKDataStream;

class ALOGPLUGINEXPORT GKClientProperty
{
public:		
	GKClientProperty();
    GKClientProperty( int demand, const GKTimeDuration& service);
    ~GKClientProperty();

	GKClientProperty & operator= ( const GKClientProperty& prop );
	
	int getDemand() const;
	const GKTimeDuration& getServiceTime() const;
	
private:
	int		demand;
	GKTimeDuration 	serviceTime;
};


Output:
1
2
3
4
5
6
Line 20: error: qstring.h: No such file or directory
Line 27: error: GKTimeDuration.h: No such file or directory
Line 27: error: ALogPluginUtil.h: No such file or directory
Line 0: error: unterminated #ifndef
Line 10: error: invalid function declaration
compilation terminated due to -Wfatal-errors.


Create a new paste based on this one


Comments: