diff options
author | Andrew Gallant (Ocelot) <Andrew.Gallant@tufts.edu> | 2012-04-30 02:44:31 -0400 |
---|---|---|
committer | Andrew Gallant (Ocelot) <Andrew.Gallant@tufts.edu> | 2012-04-30 02:44:31 -0400 |
commit | 2a2d8653b3a7918dfb00dcca8937b0e878279c70 (patch) | |
tree | 39505670885d7ae838f9c306070336db4685e078 /nexgb/xgbgen/representation.go | |
parent | 05d8ec6a16acf88c5ae7521d86131f5ea7f9b4e4 (diff) | |
download | haven-2a2d8653b3a7918dfb00dcca8937b0e878279c70.tar.gz haven-2a2d8653b3a7918dfb00dcca8937b0e878279c70.tar.xz haven-2a2d8653b3a7918dfb00dcca8937b0e878279c70.zip |
gofmt
Diffstat (limited to 'nexgb/xgbgen/representation.go')
-rw-r--r-- | nexgb/xgbgen/representation.go | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/nexgb/xgbgen/representation.go b/nexgb/xgbgen/representation.go index 928e219..2d33a45 100644 --- a/nexgb/xgbgen/representation.go +++ b/nexgb/xgbgen/representation.go @@ -1,14 +1,14 @@ package main type Protocol struct { - Name string - ExtXName string - ExtName string + Name string + ExtXName string + ExtName string MajorVersion string MinorVersion string - Imports []*Protocol - Types []Type + Imports []*Protocol + Types []Type Requests []*Request } @@ -28,10 +28,10 @@ func (p *Protocol) Initialize() { type Request struct { srcName string xmlName string - Opcode int + Opcode int Combine bool - Fields []Field - Reply *Reply + Fields []Field + Reply *Reply } func (r *Request) Initialize(p *Protocol) { @@ -53,4 +53,3 @@ func (r *Reply) Initialize(p *Protocol) { field.Initialize(p) } } - |