]> git.tdb.fi Git - builder.git/blob - source/vssolutionfile.h
d35b4b91f09b85e70e2aae9e4b86c2e84bed020b
[builder.git] / source / vssolutionfile.h
1 #ifndef VSSOLUTIONFILE_H_
2 #define VSSOLUTIONFILE_H_
3
4 #include "filetarget.h"
5
6 class VsSolutionFile: public FileTarget
7 {
8 public:
9         VsSolutionFile(Builder &, const SourcePackage &);
10
11         virtual const char *get_type() const { return "VsSolutionFile"; }
12 protected:
13         virtual void find_dependencies();
14 };
15
16 #endif