mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-07 22:30:13 -06:00
Run the `clang-format.bash` script to update our C and C++ code to a new include order `.clang-format`. Use `clang-format` version 6.0.
23 lines
240 B
C++
23 lines
240 B
C++
|
|
#ifndef LIBB_H
|
|
#define LIBB_H
|
|
|
|
#include <QObject>
|
|
|
|
#include "libA.h"
|
|
#include "libb_export.h"
|
|
|
|
class LIBB_EXPORT LibB : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit LibB(QObject* parent = 0);
|
|
|
|
int foo();
|
|
|
|
private:
|
|
LibA a;
|
|
};
|
|
|
|
#endif
|