Sign in

gwj / ice_auth_example · Files

GitLab

  • Go to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • Snippets
  • ice_auth_example
  • cpp11
  • Ice
  • auth_interceptor
  • Context.ice
  • Added interceptor solution.
    9d725497
    Grzegorz Jabłoński authored
    2019-03-26 20:57:55 +0100  
    Browse Code »
Context.ice 255 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//

#pragma once

module Demo
{
    exception SecurityError {};
    interface Context
    {
        string login(string name, string password);
        void function();
        void shutdown();
    }
}