Line | Count | Source (jump to first uncovered line) |
1 | /* This Source Code Form is subject to the terms of the Mozilla Public | |
2 | * License, v. 2.0. If a copy of the MPL was not distributed with this | |
3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ | |
4 | ||
5 | #ifndef ATOM_H_ | |
6 | #define ATOM_H_ | |
7 | ||
8 | namespace mozilla { | |
9 | ||
10 | class Atom | |
11 | { | |
12 | public: | |
13 | Atom() | |
14 | : mValid(false) | |
15 | 0 | { |
16 | 0 | } |
17 | virtual bool IsValid() | |
18 | 0 | { |
19 | 0 | return mValid; |
20 | 0 | } |
21 | protected: | |
22 | bool mValid; | |
23 | }; | |
24 | ||
25 | } | |
26 | ||
27 | #endif // ATOM_H_ |