Example #1
0
        public void Initialize(MainForm form, CommandLineArgs cmdLineArgs,
                               CipherPool cipherPool)
        {
            Debug.Assert(form != null);
            Debug.Assert(cmdLineArgs != null);
            Debug.Assert(cipherPool != null);

            m_form        = form;
            m_cmdLineArgs = cmdLineArgs;
            m_cipherPool  = cipherPool;
        }
Example #2
0
        public void Init(MainForm form, PwDatabase pwDatabase, CommandLineArgs cmdLineArgs,
                         CipherPool cipherPool)
        {
            Debug.Assert(form != null);
            Debug.Assert(pwDatabase != null);
            Debug.Assert(cmdLineArgs != null);

            m_form        = form;
            m_pwDatabase  = pwDatabase;
            m_cmdLineArgs = cmdLineArgs;
            m_cipherPool  = cipherPool;
        }