People in the Net
People in the Net (German: Menschen im Netz), also known as Unwilling Agent, is a 1959 West German Cold War spy film directed by Franz Peter Wirth and starring Hansjörg Felmy, Johanna von Koczian and Hannes Messemer.[1]
People in the Net | |
---|---|
![]() | |
Directed by | Franz Peter Wirth |
Produced by | Hans Abich |
Written by |
|
Starring | |
Music by | Hans-Martin Majewski |
Cinematography | Günther Senftleben |
Edited by | Claus von Boro |
Production company | |
Distributed by | Bavaria Film |
Release date | 23 July 1959 |
Running time | 95 minutes |
Country | West Germany |
Language | German |
The film's sets were designed by the art directors Franz Bi and Max Seefelder. It was shot at the Bavaria Studios in Munich.
Cast
- Hansjörg Felmy as Klaus Martens
- Johanna von Koczian as Gitta Martens
- Hannes Messemer as Braun
- Ingeborg Schöner as Marianne Gardella
- Rosel Schäfer as Daisy Winter
- Hanns Lothar as Stefan
- Gernot Duda as Janos
- Klaus Havenstein as Beamter
- Peter Lühr as Dr. Becker
- Walter Sedlmayr
- Willy Semmelrogge as Lauer
- Olga von Togni as Olga Hajek
- Max Mairich as Fischer
- Alexander Hunzinger as Wagentritt
- Paul Verhoeven as Karel
- Helmut Brasch as Grasdorffer
- Ettore Cella as Luigi Gardella
- Gerhard Just as Herr Liebermann
- Rolf Kralovitz as Berger
- Franziska Liebing as Frau Liebermann
- Anton Reimer as Kriminal-Inspektor
gollark: And 🦀Safe Rust™🦀.
gollark: See, this is much nicer.
gollark: ```rustpub struct List<T> { head: Link<T>,}type Link<T> = Option<Box<Node<T>>>;struct Node<T> { elem: T, next: Link<T>,}impl<T> List<T> { pub fn new() -> Self { List { head: None } } pub fn push(&mut self, elem: T) { let new_node = Box::new(Node { elem: elem, next: self.head.take(), }); self.head = Some(new_node); } pub fn pop(&mut self) -> Option<T> { self.head.take().map(|node| { self.head = node.next; node.elem }) }}impl<T> Drop for List<T> { fn drop(&mut self) { let mut cur_link = self.head.take(); while let Some(mut boxed_node) = cur_link { cur_link = boxed_node.next.take(); } }}```
gollark: ... or at all?
gollark: You don't have a thing to efficiently deallocate the list.
References
- Bock & Bergfelder p. 306
Bibliography
- Bock, Hans-Michael & Bergfelder, Tim. The Concise CineGraph. Encyclopedia of German Cinema. Berghahn Books, 2009.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.