* added implementation for Gradle project setup (icon is still missing) * refactored project loading/saving and SourceGroupSettings * removed long deprecated Cxx UseSourcePathsForHeaderSearch option fortune cookie message = There is true and sincere friendship between you and your friends.
22 lines
463 B
C++
22 lines
463 B
C++
#ifndef SOURCE_GROUP_CXX_H
|
|
#define SOURCE_GROUP_CXX_H
|
|
|
|
#include <memory>
|
|
#include <set>
|
|
|
|
#include "project/SourceGroup.h"
|
|
#include "settings/SourceGroupSettingsCxx.h"
|
|
|
|
class SourceGroupCxx: public SourceGroup
|
|
{
|
|
public:
|
|
SourceGroupCxx();
|
|
virtual ~SourceGroupCxx();
|
|
|
|
private:
|
|
virtual std::shared_ptr<SourceGroupSettingsCxx> getSourceGroupSettingsCxx() = 0;
|
|
virtual std::shared_ptr<SourceGroupSettings> getSourceGroupSettings();
|
|
};
|
|
|
|
#endif // SOURCE_GROUP_CXX_H
|