aboutsummaryrefslogtreecommitdiffstats
path: root/tools/llvmc2/Tool.h
diff options
context:
space:
mode:
authorMikhail Glushenkov <foldr@codedgers.com>2008-05-07 21:50:19 +0000
committerMikhail Glushenkov <foldr@codedgers.com>2008-05-07 21:50:19 +0000
commit4561ab5d8199cbfe21288d06b89d8268b48e4be2 (patch)
tree29fa06e6f00b4b874fe449a847c6431d0c472024 /tools/llvmc2/Tool.h
parent1fd2e6d84e271c17d7ae8778058c13de517dbc17 (diff)
downloadexternal_llvm-4561ab5d8199cbfe21288d06b89d8268b48e4be2.zip
external_llvm-4561ab5d8199cbfe21288d06b89d8268b48e4be2.tar.gz
external_llvm-4561ab5d8199cbfe21288d06b89d8268b48e4be2.tar.bz2
Use Doxygen-style comments.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50833 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llvmc2/Tool.h')
-rw-r--r--tools/llvmc2/Tool.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/llvmc2/Tool.h b/tools/llvmc2/Tool.h
index 122c887..bfa7e46 100644
--- a/tools/llvmc2/Tool.h
+++ b/tools/llvmc2/Tool.h
@@ -26,6 +26,7 @@ namespace llvmc {
typedef std::vector<llvm::sys::Path> PathVector;
+ /// Tool - A class
class Tool : public llvm::RefCountedBaseVPTR<Tool> {
public:
@@ -46,7 +47,7 @@ namespace llvmc {
virtual bool IsJoin() const = 0;
};
- // Join tools have an input file list associated with them.
+ /// JoinTool - A Tool that has an associated input file list.
class JoinTool : public Tool {
public:
void AddToJoinList(const llvm::sys::Path& P) { JoinList_.push_back(P); }