diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2016-01-19 14:26:45 +0100 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2016-01-19 14:26:45 +0100 |
commit | cd7287325944571e9d53b00b48abdba4c9257474 (patch) | |
tree | fe6f822597e17c3a6f7d06fb512fcda36e490f21 /common/commands | |
parent | 1812c077d6461b3e9fb865f47cffafc3c179e136 (diff) | |
download | sink-cd7287325944571e9d53b00b48abdba4c9257474.tar.gz sink-cd7287325944571e9d53b00b48abdba4c9257474.zip |
Moved all commands in to the Commands namespace
Diffstat (limited to 'common/commands')
-rw-r--r-- | common/commands/commandcompletion.fbs | 2 | ||||
-rw-r--r-- | common/commands/fetchentity.fbs | 2 | ||||
-rw-r--r-- | common/commands/handshake.fbs | 2 | ||||
-rw-r--r-- | common/commands/notification.fbs | 2 | ||||
-rw-r--r-- | common/commands/revisionupdate.fbs | 2 | ||||
-rw-r--r-- | common/commands/synchronize.fbs | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/common/commands/commandcompletion.fbs b/common/commands/commandcompletion.fbs index 5330b4f..de7ec14 100644 --- a/common/commands/commandcompletion.fbs +++ b/common/commands/commandcompletion.fbs | |||
@@ -1,4 +1,4 @@ | |||
1 | namespace Akonadi2; | 1 | namespace Akonadi2.Commands; |
2 | 2 | ||
3 | table CommandCompletion { | 3 | table CommandCompletion { |
4 | id: ulong; | 4 | id: ulong; |
diff --git a/common/commands/fetchentity.fbs b/common/commands/fetchentity.fbs index ddca275..7a1d74d 100644 --- a/common/commands/fetchentity.fbs +++ b/common/commands/fetchentity.fbs | |||
@@ -1,4 +1,4 @@ | |||
1 | namespace Akonadi2; | 1 | namespace Akonadi2.Commands; |
2 | 2 | ||
3 | table FetchEntity { | 3 | table FetchEntity { |
4 | revision: ulong; | 4 | revision: ulong; |
diff --git a/common/commands/handshake.fbs b/common/commands/handshake.fbs index 52a883a..e824715 100644 --- a/common/commands/handshake.fbs +++ b/common/commands/handshake.fbs | |||
@@ -1,4 +1,4 @@ | |||
1 | namespace Akonadi2; | 1 | namespace Akonadi2.Commands; |
2 | 2 | ||
3 | table Handshake { | 3 | table Handshake { |
4 | name: string; | 4 | name: string; |
diff --git a/common/commands/notification.fbs b/common/commands/notification.fbs index 5c810cf..89687cf 100644 --- a/common/commands/notification.fbs +++ b/common/commands/notification.fbs | |||
@@ -1,4 +1,4 @@ | |||
1 | namespace Akonadi2; | 1 | namespace Akonadi2.Commands; |
2 | 2 | ||
3 | enum NotificationType : byte { Shutdown = 1, Status, Warning, Progress, Inspection } | 3 | enum NotificationType : byte { Shutdown = 1, Status, Warning, Progress, Inspection } |
4 | enum NotificationCode : byte { Success = 0, Failure = 1, UserCode } | 4 | enum NotificationCode : byte { Success = 0, Failure = 1, UserCode } |
diff --git a/common/commands/revisionupdate.fbs b/common/commands/revisionupdate.fbs index 634bcd0..93fbe34 100644 --- a/common/commands/revisionupdate.fbs +++ b/common/commands/revisionupdate.fbs | |||
@@ -1,4 +1,4 @@ | |||
1 | namespace Akonadi2; | 1 | namespace Akonadi2.Commands; |
2 | 2 | ||
3 | table RevisionUpdate { | 3 | table RevisionUpdate { |
4 | revision: ulong; | 4 | revision: ulong; |
diff --git a/common/commands/synchronize.fbs b/common/commands/synchronize.fbs index d2d0364..7c3ae9a 100644 --- a/common/commands/synchronize.fbs +++ b/common/commands/synchronize.fbs | |||
@@ -1,4 +1,4 @@ | |||
1 | namespace Akonadi2; | 1 | namespace Akonadi2.Commands; |
2 | 2 | ||
3 | table Synchronize { | 3 | table Synchronize { |
4 | sourceSync: bool; //Synchronize with source | 4 | sourceSync: bool; //Synchronize with source |