Skip to content

Commit

Permalink
Fix SystemSession::Status forward declarations
Browse files Browse the repository at this point in the history
  • Loading branch information
psieg committed Apr 12, 2024
1 parent 381c4c0 commit a98dd51
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Software/grab/include/DDuplGrabber.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
MIDL_INTERFACE("29038f61-3839-4626-91fd-086879011a05") IDXGIAdapter1;
_COM_SMARTPTR_TYPEDEF(IDXGIAdapter1, __uuidof(IDXGIAdapter1));
namespace SystemSession {
enum Status;
enum Status : int;
};
enum DDuplGrabberState
{
Expand Down
2 changes: 1 addition & 1 deletion Software/src/GrabManager.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class TimeEvaluations;
class D3D10Grabber;

namespace BlueLightReduction { class Client; };
namespace SystemSession { enum Status; };
namespace SystemSession { enum Status : int; };

class GrabManager : public QObject
{
Expand Down
2 changes: 1 addition & 1 deletion Software/src/LedDeviceManager.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

class QTimer;
namespace SystemSession {
enum Status;
enum Status : int;
};
/*!
This class creates \a ILedDevice implementations and manages them after.
Expand Down

0 comments on commit a98dd51

Please sign in to comment.