Skip to content

Commit

Permalink
Fixed|Windows|libdeng2|libgui: Exported classes
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed May 15, 2013
1 parent 94a9e4b commit 9f868ff
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion doomsday/libdeng2/include/de/data/infobank.h
Expand Up @@ -36,7 +36,7 @@ class File;
* InfoBank handles the common plumbing of parsing an Info file and iterating
* through it for creating bank sources.
*/
class InfoBank : public Bank
class DENG2_PUBLIC InfoBank : public Bank
{
public:
InfoBank(Bank::Flags const &flags = Bank::DefaultFlags,
Expand Down
2 changes: 1 addition & 1 deletion doomsday/libdeng2/include/de/widgets/rulebank.h
Expand Up @@ -34,7 +34,7 @@ class Record;
/**
* Bank of Rules where each is identified by a Path.
*/
class RuleBank : public InfoBank
class DENG2_PUBLIC RuleBank : public InfoBank
{
public:
RuleBank();
Expand Down
3 changes: 2 additions & 1 deletion doomsday/libgui/include/de/gui/colorbank.h
Expand Up @@ -19,6 +19,7 @@
#ifndef LIBGUI_COLORBANK_H
#define LIBGUI_COLORBANK_H

#include "libgui.h"
#include <de/InfoBank>
#include <de/File>
#include <de/Vector>
Expand All @@ -28,7 +29,7 @@ namespace de {
/**
* Bank of colors where each color is identified by a Path.
*/
class ColorBank : public InfoBank
class LIBGUI_PUBLIC ColorBank : public InfoBank
{
public:
typedef Vector4ub Color;
Expand Down

0 comments on commit 9f868ff

Please sign in to comment.