summaryrefslogtreecommitdiff
path: root/project2/ice/buildClient.h
blob: a6f6ef13d364379f7d4f53a01a1004ee28ca91ba (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 std::filesystem::path & slice, const IceCompile::Deps & dep);

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

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

#endif