17 lines
419 B
C++
17 lines
419 B
C++
/******************************************************************************
|
|
* QSkinny - Copyright (C) 2016 Uwe Rathmann
|
|
* This file may be used under the terms of the 3-clause BSD License
|
|
*****************************************************************************/
|
|
|
|
#ifndef SKINNY_PLUGIN_H_
|
|
#define SKINNY_PLUGIN_H_
|
|
|
|
#include "SkinnyGlobal.h"
|
|
|
|
namespace SKINNY_EXPORT SkinnyPlugin
|
|
{
|
|
void init();
|
|
}
|
|
|
|
#endif
|