]> git.tdb.fi Git - builder.git/blob - source/archive.h
Add comments
[builder.git] / source / archive.h
1 #ifndef ARCHIVE_H_
2 #define ARCHIVE_H_
3
4 #include "externalaction.h"
5
6 class StaticLibrary;
7
8 /**
9 Creates an archive of object files, a.k.a. static library.
10 */
11 class Archive: public ExternalAction
12 {
13 public:
14         Archive(Builder &, const StaticLibrary &);
15 };
16
17 #endif