Skip to content

Commit baf9dcc

Browse files
committed
Do not export internal classes
1 parent ac5c5a4 commit baf9dcc

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

src/blocks/controlblocks.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class Compiler;
1313
class VirtualMachine;
1414

1515
/*! \brief The ControlBlocks class contains the implementation of control blocks. */
16-
class LIBSCRATCHCPP_EXPORT ControlBlocks : public IBlockSection
16+
class ControlBlocks : public IBlockSection
1717
{
1818
public:
1919
enum Inputs

src/blocks/eventblocks.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class Compiler;
1111
class VirtualMachine;
1212

1313
/*! \brief The EventBlocks class contains the implementation of event blocks. */
14-
class LIBSCRATCHCPP_EXPORT EventBlocks : public IBlockSection
14+
class EventBlocks : public IBlockSection
1515
{
1616
public:
1717
enum Inputs

src/blocks/listblocks.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ namespace libscratchcpp
1010
class Compiler;
1111

1212
/*! \brief The ListBlocks class contains the implementation of list blocks. */
13-
class LIBSCRATCHCPP_EXPORT ListBlocks : public IBlockSection
13+
class ListBlocks : public IBlockSection
1414
{
1515
public:
1616
enum Inputs

src/blocks/looksblocks.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ namespace libscratchcpp
88
{
99

1010
/*! \brief The LooksBlocks class contains the implementation of looks blocks. */
11-
class LIBSCRATCHCPP_EXPORT LooksBlocks : public IBlockSection
11+
class LooksBlocks : public IBlockSection
1212
{
1313
public:
1414
std::string name() const override;

src/blocks/motionblocks.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ namespace libscratchcpp
88
{
99

1010
/*! \brief The MotionBlocks class contains the implementation of motion blocks. */
11-
class LIBSCRATCHCPP_EXPORT MotionBlocks : public IBlockSection
11+
class MotionBlocks : public IBlockSection
1212
{
1313
public:
1414
std::string name() const override;

src/blocks/operatorblocks.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class Compiler;
1111
class VirtualMachine;
1212

1313
/*! \brief The OperatorBlocks class contains the implementation of operator blocks. */
14-
class LIBSCRATCHCPP_EXPORT OperatorBlocks : public IBlockSection
14+
class OperatorBlocks : public IBlockSection
1515
{
1616
public:
1717
enum Inputs

src/blocks/sensingblocks.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ namespace libscratchcpp
88
{
99

1010
/*! \brief The SensingBlocks class contains the implementation of sensing blocks. */
11-
class LIBSCRATCHCPP_EXPORT SensingBlocks : public IBlockSection
11+
class SensingBlocks : public IBlockSection
1212
{
1313
public:
1414
std::string name() const override;

src/blocks/soundblocks.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ namespace libscratchcpp
88
{
99

1010
/*! \brief The SoundBlocks class contains the implementation of sound blocks. */
11-
class LIBSCRATCHCPP_EXPORT SoundBlocks : public IBlockSection
11+
class SoundBlocks : public IBlockSection
1212
{
1313
public:
1414
std::string name() const override;

src/blocks/variableblocks.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ namespace libscratchcpp
1010
class Compiler;
1111

1212
/*! \brief The VariableBlocks class contains the implementation of variable blocks. */
13-
class LIBSCRATCHCPP_EXPORT VariableBlocks : public IBlockSection
13+
class VariableBlocks : public IBlockSection
1414
{
1515
public:
1616
enum Inputs

src/internal/scratch3reader.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
namespace libscratchcpp
1010
{
1111

12-
class LIBSCRATCHCPP_EXPORT Scratch3Reader : public IProjectReader
12+
class Scratch3Reader : public IProjectReader
1313
{
1414
public:
1515
bool load() override;

0 commit comments

Comments
 (0)