summaryrefslogtreecommitdiff
path: root/project2/ice/buildClient.h
blob: e16872e7a74f3f42f23f6d2f2481c224d3da1fd5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef BUILDCLIENT_H
#define BUILDCLIENT_H

#include "sliceCompile.h"
#include <string>

class BuildClient : public SliceCompile {
	public:
		BuildClient(const boost::filesystem::path & slice, const IceCompile::Deps & dep);

		virtual void Headers(FILE *) const;
		virtual unsigned int Body(FILE *, Slice::UnitPtr) const;

		boost::filesystem::path OutputName(const std::string & type) const;
};

#endif