~ubuntu-branches/ubuntu/quantal/zeroc-ice/quantal

« back to all changes in this revision

Viewing changes to cs/demo/IceGrid/simple/Server.cs

  • Committer: Bazaar Package Importer
  • Author(s): Cleto Martín
  • Date: 2011-06-25 19:44:26 UTC
  • mfrom: (6.1.16 sid)
  • Revision ID: james.westby@ubuntu.com-20110625194426-9fip3u3hlwheohvl
Tags: 3.4.2-1
New upstream release (Closes: #631456).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
// **********************************************************************
2
2
//
3
 
// Copyright (c) 2003-2010 ZeroC, Inc. All rights reserved.
 
3
// Copyright (c) 2003-2011 ZeroC, Inc. All rights reserved.
4
4
//
5
5
// This copy of Ice is licensed to you under the terms described in the
6
6
// ICE_LICENSE file included in this distribution.
38
38
        }
39
39
    }
40
40
 
41
 
    static public void Main(string[] args)
 
41
    static public int Main(string[] args)
42
42
    {
43
43
        App app = new App();
44
 
        int status = app.main(args);
45
 
        if(status != 0)
46
 
        {
47
 
            System.Environment.Exit(status);
48
 
        }
 
44
        return app.main(args);
49
45
    }
50
46
}