OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2015 the V8 project authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef V8_OBJECTS_BODY_DESCRIPTORS_FWD_H_ | |
Michael Starzinger
2015/11/13 10:58:54
I am not a fan of yet another family of header fil
Igor Sheludko
2015/11/13 11:23:51
Done.
| |
6 #define V8_OBJECTS_BODY_DESCRIPTORS_FWD_H_ | |
7 | |
8 namespace v8 { | |
9 namespace internal { | |
10 | |
11 template <int start_offset, int end_offset, int size> | |
12 class FixedBodyDescriptor; | |
13 | |
14 | |
15 template <int start_offset, int end_offset, int size> | |
16 class FixedBodyDescriptor; | |
17 | |
18 | |
19 template <int start_offset> | |
20 class FlexibleBodyDescriptor; | |
21 | |
22 } // namespace internal | |
23 } // namespace v8 | |
24 | |
25 #endif // V8_OBJECTS_BODY_DESCRIPTORS_FWD_H_ | |
OLD | NEW |