Warning, file /sdk/heaptrack/tests/manual/lib.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001 /* 0002 SPDX-FileCopyrightText: 2014-2017 Milian Wolff <mail@milianw.de> 0003 0004 SPDX-License-Identifier: LGPL-2.1-or-later 0005 */ 0006 0007 #ifndef LIB_H 0008 #define LIB_H 0009 0010 #include <cstddef> 0011 0012 class Foo 0013 { 0014 public: 0015 Foo(); 0016 ~Foo(); 0017 0018 std::size_t doBar(); 0019 std::size_t doFoo(); 0020 0021 private: 0022 class Private; 0023 Private* d; 0024 }; 0025 0026 #endif // LIB_H