]> git.tdb.fi Git - builder.git/blob - source/archive.h
Add Id tag to all files
[builder.git] / source / archive.h
1 /* $Id$
2
3 This file is part of builder
4 Copyright © 2006-2007 Mikko Rasa, Mikkosoft Productions
5 Distributed under the LGPL
6 */
7
8 #ifndef ARCHIVE_H_
9 #define ARCHIVE_H_
10
11 #include "externalaction.h"
12
13 class StaticLibrary;
14
15 /**
16 Creates an archive of object files, a.k.a. static library.
17 */
18 class Archive: public ExternalAction
19 {
20 public:
21         Archive(Builder &, const StaticLibrary &);
22 };
23
24 #endif