blob: a8c0b6cb697bf9e42ed631e8e829f84e345854d8 (
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 void Body(FILE *, Slice::UnitPtr) const;
boost::filesystem::path OutputName(const std::string & type) const;
};
#endif
|